home *** CD-ROM | disk | FTP | other *** search
/ Asobe! Fotoshock 5.0 ERO / Asobe! Fotoshock 5.0 ERO.iso / pc / main.dxr / ì‡ë†_9_BUTTON(UPÇÃÇÐÇ´ÉAÉNÉVÉáÉì).ls < prev    next >
Encoding:
Text File  |  1999-03-23  |  980 b   |  45 lines

  1. property spriteNum, mymem, downmem, downflag
  2.  
  3. on beginSprite
  4.   set mymem to the member of sprite spriteNum
  5.   set downmem to member (the name of mymem & "_dwn")
  6.   set downflag to 0
  7. end
  8.  
  9. on mouseEnter
  10.   if downflag then
  11.     set the member of sprite spriteNum to downmem
  12.   end if
  13. end
  14.  
  15. on mouseDown
  16.   if not downflag then
  17.     set the member of sprite spriteNum to downmem
  18.     set downflag to 1
  19.   end if
  20. end
  21.  
  22. on mouseUp
  23.   if downflag then
  24.     set the member of sprite spriteNum to mymem
  25.     set downflag to 0
  26.     sendSprite(spriteNum, #btncmd)
  27.   end if
  28. end
  29.  
  30. on mouseLeave
  31.   if downflag then
  32.     set the member of sprite spriteNum to mymem
  33.   end if
  34. end
  35.  
  36. on mouseUpOutSide
  37.   if downflag then
  38.     set downflag to 0
  39.   end if
  40. end
  41.  
  42. on getBehaviorDescription
  43.   return "テ慊カテ⑽テェナステ‡ツオテ‡ツ「テ⑾テ益テ叡テ鰻テ嘉姪閲テ運テ嘉ャテ‡テεェUテッテォテ‡ツ「テ‡ツ敕‡ナステ‡テセテ‡テˆ" & RETURN & "テ閲テ運テ嘉ャテ‡窶ヲテォナ津‡テ敕‡テ暗雨テ…[テ噂テ嘉」テ‡テεャテ†テ‡ツエテ‡窶ヲテ‡窶 テ‡テ古‡テセテ‡ニ津②テ閲テ運テ嘉ャテ鵜テ嘉嘉厩テ曳テ‡ツ敕ャツクテ‡テ催ォテキテ‡ツカテ‡テ暗③"
  44. end
  45.